-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expr2 rule node #98
Expr2 rule node #98
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #98 +/- ##
==========================================
+ Coverage 45.83% 52.60% +6.76%
==========================================
Files 7 7
Lines 456 557 +101
==========================================
+ Hits 209 293 +84
- Misses 247 264 +17 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good! Just one change for the docstring. If possible, it would be great to have full line coverage with the tests.
src/rulenode_operators.jl
Outdated
""" | ||
expr2ulenode(expr::Expr, grammar::AbstractGrammar) | ||
|
||
Converts an expression into a [`AbstractRuleNode`](@ref) corresponding to the rule definitions in the grammar. | ||
""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to be directly before the definition of expr2rulenode(...)
. The signature in the docstring is missing an 'r', btw.
No description provided.